github.com/refraction-networking/utls.certificateRequestMsg.supportedSignatureAlgorithms (field)

12 uses

	github.com/refraction-networking/utls (current package)
		handshake_client.go#L835: 			signatureAlgorithm, err := selectSignatureScheme(c.vers, chainToSend, certReq.supportedSignatureAlgorithms)
		handshake_client.go#L1293: 	cri.SignatureSchemes = make([]SignatureScheme, 0, len(certReq.supportedSignatureAlgorithms))
		handshake_client.go#L1294: 	for _, sigScheme := range certReq.supportedSignatureAlgorithms {
		handshake_messages.go#L1761: 	supportedSignatureAlgorithms []SignatureScheme
		handshake_messages.go#L1775: 		length += 2 + 2*len(m.supportedSignatureAlgorithms)
		handshake_messages.go#L1790: 		n := len(m.supportedSignatureAlgorithms) * 2
		handshake_messages.go#L1794: 		for _, sigAlgo := range m.supportedSignatureAlgorithms {
		handshake_messages.go#L1851: 		m.supportedSignatureAlgorithms = make([]SignatureScheme, numSigAlgos)
		handshake_messages.go#L1852: 		for i := range m.supportedSignatureAlgorithms {
		handshake_messages.go#L1853: 			m.supportedSignatureAlgorithms[i] = SignatureScheme(data[0])<<8 | SignatureScheme(data[1])
		handshake_server.go#L644: 			certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
		handshake_server.go#L754: 			if !isSupportedSignatureAlgorithm(certVerify.signatureAlgorithm, certReq.supportedSignatureAlgorithms) {